home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / prnmain / project.dpr < prev    next >
Encoding:
Text File  |  1995-12-22  |  238 b   |  19 lines

  1. {******* project.dpr *******}
  2.  
  3. program Project;
  4.  
  5. uses
  6.   Forms,
  7.   Prnmain in 'PRNMAIN.PAS',
  8.   Demo in 'DEMO.PAS' {PrintForm};
  9.  
  10. {$R *.RES}
  11.  
  12.  
  13. begin
  14.   Application.CreateForm(TPrintForm, PrintForm);
  15.   Application.Run;
  16. end.
  17.  
  18.  
  19.